home *** CD-ROM | disk | FTP | other *** search
/ Swimwear Illustrated / Swimwear Illustrated.iso / mac / main / QUIT32.DIR / 00005_Script_5 < prev    next >
Text File  |  1995-09-26  |  473b  |  21 lines

  1. on exitFrame
  2.   if rollover(2) then 
  3.     set the visible of sprite 2 to true
  4.   else
  5.     set the visible of sprite 2 to false
  6.   end if
  7.   if rollover(3) then 
  8.     set the visible of sprite 3 to true
  9.   else
  10.     set the visible of sprite 3 to false
  11.   end if
  12.     if rollover(4) then 
  13.     set the visible of sprite 5 to true
  14.   else
  15.     set the visible of sprite 5 to false
  16.   end if
  17.   if not soundbusy(1) then
  18.     sound playfile 1, "quit"
  19.   end if
  20.   go loop
  21. end